home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / pdflib / bindings / cgi / clock.cgi
Text File  |  1999-09-16  |  119b  |  11 lines

  1. #!/bin/sh
  2. TMP=/var/tmp/clock.$$.pdf
  3.  
  4. echo Content-type: application/pdf
  5. echo
  6.  
  7. pdfclock -o $TMP
  8. cat $TMP
  9. rm $TMP
  10. exit 0
  11.